home *** CD-ROM | disk | FTP | other *** search
- /* Mailer.rexx - this is what gives our fudged sendmail the filename */
- /* version 3.00 by Rick Taylor, charlet@eng.clemson.edu */
-
- /* V2.00 - added drexxmail: to the sendmail.rexx path - Whoopie. :) */
- /* V3.00 - No changes except for different names for GRn/ AmigaElm */
-
- /* GRn's */
-
- options results
- address command
-
- /* Let's grab that filename */
-
- call open .Ffile,'t:grnrexxsendmail.name',read
- daname = readln(.Ffile)
- call close .Ffile
-
- /* Now start up the actual program that sends our mail */
-
- 'sys:rexxc/rx drexxmail:grnsendmail.rexx' daname
-
- /* After that harrowing experience, let's close up shop. */
-
- exit